home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / M / LSC213.cpt / SegmentLdr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-26  |  655 b   |  37 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  SegmentLdr.h
  4.  *
  5.  *  Copyright (c) 1986, 1987 THINK Technologies, Inc.
  6.  *  These interfaces are based on information copyrighted
  7.  *  by Apple Computer, Inc., 1985, 1986, 1987.
  8.  *
  9.  */
  10.  
  11. #ifndef    _SegmentLdr_
  12. #define _SegmentLdr_
  13.  
  14. #ifndef    _MacTypes_
  15. #include "MacTypes.h"
  16. #endif
  17.  
  18. enum { appOpen, appPrint };
  19.  
  20. typedef    struct
  21.     {
  22.     int        vRefNum;
  23.     OSType    fType;
  24.     int        versNum;
  25.     Str255    fName;
  26.     } AppFile ;
  27.     
  28. /*  low-memory globals  */
  29. extern char FinderName[] : 0x2E0;
  30. extern int CurApRefNum : 0x900;
  31. extern char CurApName[] : 0x910;
  32. extern int CurJTOffset : 0x934;
  33. extern int CurPageOption : 0x936;
  34. extern Handle AppParmHandle : 0xAEC;
  35.  
  36.  
  37. #endif _SegmentLdr_